

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
	font-family: 'Montserrat', sans-serif;
}

body{
 
  /* background: #302; */
  background: linear-gradient(rgb(111, 27, 136), rgb(2, 0, 128));

}
 
.wrapper{
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;


 
}

.registration_form{
  background: #09102c;
  border: 1px solid #000;
	border-radius: 10px;
	width: 350px;
  height: 550px;
  text-align: center;
}


.registration_form .title{
	text-align: center;
	font-size: 20px;
	text-transform: uppercase;
	color: #ebd0ce;
	letter-spacing: 5px;
	font-weight: 500;

}

.form_wrap{
	margin-top: 35px;
}

.form_wrap .input_wrap{
	margin-bottom: 15px;
}

.btn{
	color: white;
	text-decoration: none;
	background-color: rgb(202, 47, 150);
	padding: 10px 40px 10px 40px;
	border-radius: 20px;
}

.form_wrap .input_wrap:last-child{
	margin-bottom: 0;
}

.form_wrap .input_wrap label{
	display: block;
	margin-bottom: 3px;
	color: #f0f0f1;
}

.form_wrap .input_grp{
	display: flex;
	justify-content: space-between;
}

.form_wrap .input_grp  input[type="text"]{
	width: 150px;
}

.form_wrap  input[type="text"]{
  position: relative;
  width: 100%;
  height: 40px;
  border: none;
  outline: none;
  padding: 5px 15px;
  background:linear-gradient(315deg,#5d02ff, #e91e63) ;
  color: #fff;
  font-size: 18px;
  border-radius: 10px;
}

.form_wrap  input[type="text"]:focus{
	border-color: #ffffff;
}

.form_wrap ul{
	background: rgb(12, 108, 197);
	padding: 8px 10px;
	border-radius: 10px;
	display: flex;
	justify-content: center;
}

.form_wrap ul li:first-child{
	margin-right: 17px;
}

.form_wrap ul .radio_wrap{
	position: relative;
	margin-bottom: 0;
}

.form_wrap ul .radio_wrap .input_radio{
	position: absolute;
	top: 0;
	right: 0;
	opacity: 0;
}

.form_wrap ul .radio_wrap span{
	display: inline-block;
	font-size: 14px;
	padding: 3px 20px;
	border-radius: 3px;
	color: #ffffff;
  
}

.form_wrap .input_radio:checked ~ span{
	background:rgb(129, 53, 47);
  
}

.form_wrap .submit_btn{
	width: 100%;
	background:springgreen;
	padding: 10px;
	border: 0;
	border-radius: 3px;
	text-transform: uppercase;
	letter-spacing: 3px;
	cursor: pointer;
}

.form_wrap .submit_btn:hover{
  background:linear-gradient(315deg,#e91e63,#5d02ff) ;
}
.form_wrap::before
  {
    
      content: '';
      position:absolute;
     
	 margin-top:-80px;
	 margin-left: -175px;
      background: linear-gradient(315deg,#e91e63,#5d02ff);
      z-index: -1;
      transform: skew(2deg,1deg);
      border-radius: 10px;
     width: 347px;
      height: 550px;
  }